| Conditions | 4 |
| Paths | 4 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /* globals numberformat */ |
||
| 19 | this.getHTML = function(resource) { |
||
| 20 | let html = data.html[resource]; |
||
| 21 | if (typeof html === 'undefined' && data.resources[resource]) { |
||
| 22 | html = data.resources[resource].html; |
||
| 23 | } |
||
| 24 | if (typeof html === 'undefined') { |
||
| 25 | return resource; |
||
| 26 | } |
||
| 27 | return html; |
||
| 28 | }; |
||
| 29 | |||
| 59 |